body {
    background-color: black;
}

form {
    background-color: white;
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    border-style: solid;
    border-color: gray;
    border: 1px;
    border-radius: 17px;
    padding: 1.5rem;
    margin-top: 2rem;

    /* Posicionamiento al centro */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-49%, -49%);
}

form img {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
}

form input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 30px;
}
form button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 30px;
    margin-top: 10px;
}

#acomodar_boton {
    display: flex;
    gap: 10px;
}

.cancelar {
    background-color: rgb(255, 255, 255);
    color: black;
    border: 1px solid black;
}